home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / cchh01.arc / DEF.H < prev    next >
Text File  |  1986-03-14  |  408b  |  21 lines

  1.  
  2. /**
  3. *
  4. * This header file contains #DEFINEs that are used in multiple files
  5. *
  6. **/
  7.  
  8. #define  EOF         -1
  9. #define  PI          3.1415926
  10. #define  EOL         '\r'
  11. #define  EOS         '\0'
  12. #define  NL          putchar('\n')
  13. #define  ON          1
  14. #define  OFF         0
  15. #define  TRACE       OFF
  16. #define  DEBUG       OFF
  17. #define  TRACEMSG(s) printf(TRACE entered function %s. \n", s)
  18.  
  19.  
  20.  
  21.